home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / savebufferas_ilbm.ifx.pre < prev    next >
Text File  |  2004-08-03  |  1KB  |  45 lines

  1. /*
  2.  * $VER: SaveBufferAs_ILBM.ifx.pre 2.5 (11.04.96)
  3.  * Copyright © 1992-1996 Nova Design, Inc.
  4.  * Written by Thomas Krehbiel
  5.  *
  6.  * Save main buffer as ILBM.
  7.  *
  8.  * Inputs:
  9.  *    Word(Arg(1),1) = Sequence number (?)
  10.  *    Word(Arg(1),2) = Total number of frames (N)
  11.  *
  12.  * Returns:
  13.  *    0 if successful, non-zero on failure
  14.  *
  15.  */
  16.  
  17. OPTIONS RESULTS
  18.  
  19. base = 'Autofx_SaveBufferAsILBM_'
  20. seq  = WORD(ARG(1),1)
  21.  
  22. lastpath = GETCLIP(base||'Path'||seq)
  23. lastext  = GETCLIP(base||'Ext'||seq)
  24.  
  25. IF lastext = "" & lastpath = "" THEN lastext = ".24"
  26.  
  27. IF lastpath = "" THEN DO
  28.    GetPrefs SavePath
  29.    lastpath = result
  30.    END
  31.  
  32. Gadget.1 = 'STRING  120  5 200 14 "Output Path:" "'lastpath'"'
  33. Gadget.2 = 'FILEREQ 321  5  20 14 "Output Path:" "'lastpath'" AT=1 DIRONLY'
  34. Gadget.3 = 'STRING  120 20 200 14 "New Extension:" "'lastext'"'
  35. Gadget.4 = 'TEXT    120 35   1  1 "(** = current frame number)" 1'
  36. Gadget.5 = 'END'
  37.  
  38. NewComplexRequest '"Save Buffer As ILBM"' Gadget 360 56
  39. IF rc ~= 0 THEN EXIT rc
  40.  
  41. CALL SETCLIP(base||'Path'||seq, result.1)
  42. CALL SETCLIP(base||'Ext'||seq,  result.3)
  43.  
  44. EXIT
  45.